go/types.Interface.tset (field)

13 uses

	go/types (current package)
		interface.go#L25: 	tset *_TypeSet // type set described by this interface, computed lazily
		interface.go#L32: var emptyInterface = Interface{complete: true, tset: &topTypeSet}
		interface.go#L219: 		ityp.tset = &topTypeSet
		typeparam.go#L133: 	if ityp.tset == nil {
		typeset.go#L154: 	if ityp.tset != nil {
		typeset.go#L155: 		return ityp.tset
		typeset.go#L193: 	ityp.tset = &_TypeSet{terms: allTermlist} // TODO(gri) is this sufficient?
		typeset.go#L326: 	ityp.tset.comparable = allComparable
		typeset.go#L329: 		ityp.tset.methods = allMethods
		typeset.go#L331: 	ityp.tset.terms = allTerms
		typeset.go#L333: 	return ityp.tset
		universe.go#L86: 	def(NewTypeName(token.NoPos, nil, "any", &Interface{complete: true, tset: &topTypeSet}))
		universe.go#L115: 		ityp := &Interface{obj: obj, complete: true, tset: &_TypeSet{nil, allTermlist, true}}